home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / e / findmodl.rdm < prev    next >
Text File  |  1996-01-16  |  1KB  |  26 lines

  1. Short:  E Module Searcher
  2. Author: jason@fsel.com (Jason R. Hulance)
  3. Type:   dev/e
  4.  
  5. This is a small program to search E modules for names.  It has a
  6. nice(?) GUI (written using EasyGUI) so it's fairly self-explanatory
  7. and easy to use.
  8.  
  9. But what use is it?  Well, have you ever spent ages trying to find,
  10. for example, where the (C) constant JAM1 is defined?  You would have
  11. searched in vain, because E modules are based on the Assembly
  12. includes, and regretfully CBM used slightly different names.  Using
  13. FindModule you would search for JAM1 and not find it, then you might
  14. try looking for JAM as a sub-string.  You'd then find the location and
  15. values of the constants that match.
  16.  
  17. Another good example is trying to find where the 'layer' object is
  18. defined.  You might hope it was in 'graphics/layers', but alas not.
  19. FindModule will very quickly locate it in 'graphics/clip' and print
  20. the complete definition, so you don't need to call showmodule.
  21.  
  22. Basically, FindModule will hopefully be useful to beginners and
  23. experienced E programmers.  It is based on the (private) source to
  24. showmodule (by Wouter), so has all the features of that program
  25. (although the macro reporting is slightly enhanced).
  26.